home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Developer CD Series 1997 July: Mac OS SDK
/
Dev.CD Jul 97 SDK1.toast
/
Development Kits (Disc 1)
/
Interfaces&Libraries
/
Interfaces
/
CIncludes
/
NullDef.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-08-05
|
399 b
|
26 lines
|
[
TEXT/MPS
]
/*
NullDef.h -- Common definitions
Copyright Apple Computer,Inc. 1987-1990, 1994
All rights reserved.
NULL - this macro is defined by all ANSI headers and Types.h
*/
#ifndef __NULLDEF__
#define __NULLDEF__
#ifdef NULL
#undef NULL
#endif
#if !defined(__cplusplus) && (defined(__SC__) || defined(THINK_C))
#define NULL ((void *) 0)
#else
#define NULL 0
#endif
#endif /* __NULLDEF__ */